home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
C/C++ Users Group Library 1996 July
/
C-C++ Users Group Library July 1996.iso
/
listings
/
v_07_08
/
v7n8038a.txt
< prev
next >
Wrap
Text File
|
1989-10-01
|
358b
|
13 lines
*****Listing 1*****
int fprintf(FILE *stream, const char *format, ...);<R>
int printf(const char *format, ...);<R>
int sprintf(char *dest, const char *format, ...);<R>
in vfprintf(FILE *stream, const char *format, va_list ap);<R>
int vprintf(const char *format, ...);<R>
int vsprintf(char *dest, const char *format, ...);
*******************